home *** CD-ROM | disk | FTP | other *** search
- # login.cmd for Cloud 9 Internet
- # You need to edit: line 18 (make it 696 4100 or 242 0287)
- # line 34 (choose either slip or ppp, case sensitive)
- # lines 39 and 41 (your username and password)
- #
- # \13 and \n = carriage return
- # initialize modem - USR Sportster modems use special strings
- # - you may need to add other variables after "at"
- output at&f1\13
- input 10 OK\n
- #
- # set modem to indicate DCD
- #
- output at&c1\13
- input 10 OK\n
- #
- # send phone number [ This is White Plains, Mount Kisco is 242 0287 ]
- #
- output atdt 696 4100\13
- #
- # now we are connected.
- #
- input 30 CONNECT
- #
- # wait till it's safe to send because some modem's hang up
- # if you transmit during the connection phase
- #
- wait 30 dcd
- #
- # now prod the terminal server
- #
- output \13
- #
- # wait for the username prompt [ SET to PPP currently ]
- #
- input 30 service
- output ppp\13
- #
- # and the password [ Please EDIT the UPPERCASE text ]
- #
- input 30 Username:
- output YOUR_USERNAME_HERE\13
- input 30 Password:
- output YOUR_PASSWORD_HERE\13
- #
- # we are now logged in
- #